*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #C0392B; --red-dark: #96281B; --red-light: #E74C3C;
  --dark: #1A1A1A; --mid: #2D2D2D; --gray: #6B7280;
  --light-gray: #F5F5F5; --white: #FFFFFF; --cream: #FAF9F7;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
.top-bar { background: var(--red-dark); color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 500; letter-spacing: 0.05em; padding: 8px 16px; text-align: center; }
.top-bar a { color: rgba(255,255,255,0.9); text-decoration: none; }
nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-locked { overflow: hidden; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 44px; width: auto; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; line-height:1.1; }
.logo-sub { font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; line-height:1.1; margin-top:2px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { display: block; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--dark); text-decoration: none; border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover { color: var(--red); background: rgba(192,57,43,0.06); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; border-radius: 8px !important; padding: 10px 20px !important; }
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-links .has-dropdown,
.nav-links .menu-item-has-children { position: relative; }
.nav-links .has-dropdown > a::after,
.nav-links .menu-item-has-children > a::after { content: '\25BE'; margin-left: 4px; font-size: 10px; opacity: 0.5; }
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(6, 180px);
  gap: 8px 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 2000;
}
.nav-links .has-dropdown:hover .mega-dropdown,
.nav-links .has-dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}
.mega-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.mega-col { display: flex; flex-direction: column; }
.mega-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 0 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 4px;
}
.mega-dropdown .mega-col a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 500;
  color: #333 !important;
  text-decoration: none;
  background: none !important;
  border-radius: 0 !important;
}
.mega-dropdown .mega-col a:hover { color: var(--red) !important; }
.mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 8px;
  padding-top: 12px;
  text-align: center;
}
.mega-footer a { font-weight: 700 !important; color: var(--red) !important; }
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 2000;
}
.nav-links .menu-item-has-children:hover > .sub-menu,
.nav-links .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}
.nav-links .sub-menu .sub-menu { top: -10px; left: 100%; }
.nav-links .sub-menu a {
  padding: 8px 10px;
  white-space: nowrap;
  border-radius: 8px;
}
.hero { position: relative; min-height: 52vh; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(192,57,43,0.25) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 80px 32px; width: 100%; }
.breadcrumb { color: rgba(255,255,255,0.65); font-size: 13px; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--red-light); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.4); color: #F4B8B2; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(38px, 4.5vw, 60px); font-weight: 900; color: var(--white); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 14px; }
.hero p.sub { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 720px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); padding: 16px 32px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.25s; box-shadow: 0 8px 24px rgba(192,57,43,0.35); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); color: var(--white); padding: 16px 32px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; border: 1px solid rgba(255,255,255,0.25); transition: all 0.25s; }
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.content-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 72px; align-items: start; }
.content-main p { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 22px; }
.content-main h2 { font-size: 30px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; margin: 40px 0 18px; }
.content-main ul { padding-left: 22px; margin-bottom: 22px; }
.content-main li { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 8px; }
.wp-page-content { background: var(--white); padding-top: 0; }
.wp-page-content .content-main { max-width: 860px; }
.wp-page-content .content-main > *:last-child { margin-bottom: 0; }
.side-card { background: var(--cream); border: 1px solid rgba(0,0,0,0.05); border-radius: 18px; padding: 28px; position: sticky; top: 96px; }
.side-card h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 14px; letter-spacing: -0.01em; }
.side-card p { font-size: 14px; color: var(--gray); margin-bottom: 18px; }
.side-card .btn-primary { width: 100%; justify-content: center; box-shadow: none; }
.side-phone { display: block; text-align: center; margin-top: 12px; font-size: 14px; color: var(--gray); }
.side-phone a { color: var(--red); font-weight: 700; text-decoration: none; }
.cross-links { background: var(--light-gray); }
.cross-links .section-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.cross-links h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 900; color: var(--dark); letter-spacing: -0.03em; margin-bottom: 14px; }
.cross-links .sub { color: var(--gray); max-width: 580px; margin-bottom: 40px; font-size: 16px; line-height: 1.7; }
.cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cross-col { background: white; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 24px; }
.cross-cat { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cross-col a { display: block; padding: 6px 0; font-size: 14px; font-weight: 500; color: #333; text-decoration: none; }
.cross-col a:hover { color: var(--red); }
.contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 38px; font-weight: 900; color: var(--dark); letter-spacing: -0.03em; margin-bottom: 14px; }
.contact-info > p { font-size: 16px; color: var(--gray); margin-bottom: 30px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(192,57,43,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.contact-item-value { font-size: 16px; font-weight: 700; color: var(--dark); display: block; margin-top: 2px; }
.contact-item-value a { color: var(--red); text-decoration: none; }
.contact-form-card { background: var(--white); border-radius: 18px; padding: 36px; box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 20px; letter-spacing: -0.02em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 2px solid #E5E7EB; border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-submit { width: 100%; background: var(--red); color: var(--white); border: none; padding: 15px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.25s; margin-top: 6px; }
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.form-note { text-align: center; font-size: 11px; color: var(--gray); margin-top: 10px; }
.form-alert { margin: 0 0 18px; padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 1.5; }
.form-alert-success { background: #ECFDF3; border: 1px solid #ABEFC6; color: #067647; }
.form-alert-error { background: #FEF3F2; border: 1px solid #FECDCA; color: #B42318; }
.form-alert a { color: inherit; }
.bcss702-hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; pointer-events: none !important; }
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 0 24px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-name { color: var(--white); font-size: 20px; }
.footer-brand .logo-sub { color: var(--red-light); }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-top: 12px; max-width: 320px; }
.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; }
.footer-col ul li a:hover { color: var(--red-light); }
.footer-license { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; margin-bottom: 16px; font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-license a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); }
.powered-by { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.powered-by span { color: var(--red-light); font-weight: 700; }
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .cross-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .mega-dropdown { left: auto; right: 0; transform: translateY(16px); grid-template-columns: repeat(3, 180px); }
  .nav-links .has-dropdown:hover .mega-dropdown,
  .nav-links .has-dropdown:focus-within .mega-dropdown { transform: translateY(8px); }
}
@media (max-width: 900px) {
  body { overflow-x: hidden; }
  img { max-width: 100%; height: auto; }
  .top-bar { font-size: 11px; padding: 8px 14px; line-height: 1.5; }

  .nav-inner { padding: 0 16px; height: 64px; }
  .logo img { height: 38px; }
  .logo-name { font-size: 15px; }
  .logo-sub { font-size: 9px; letter-spacing: 0.1em; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 32px;
    margin: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    z-index: 999;
  }
  nav.nav-open .nav-links { transform: translateX(0); }

  .nav-links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { padding: 14px 4px; font-size: 15px; border-radius: 0; }
  .nav-links a:hover { background: transparent; }
  .nav-cta {
    margin-top: 14px;
    text-align: center;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }

  .nav-links .has-dropdown > a::after,
  .nav-links .menu-item-has-children > a::after { float: right; font-size: 14px; opacity: 0.6; }

  .nav-links .mega-dropdown,
  .nav-links .sub-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 4px 12px 12px;
    border-radius: 0;
    max-height: none;
  }
  .nav-links .has-dropdown.is-open .mega-dropdown,
  .nav-links .menu-item-has-children.is-open > .sub-menu { display: block; }
  .nav-links .has-dropdown:hover .mega-dropdown,
  .nav-links .has-dropdown:focus-within .mega-dropdown,
  .nav-links .menu-item-has-children:hover > .sub-menu,
  .nav-links .menu-item-has-children:focus-within > .sub-menu { transform: none; }
  .mega-col { margin-bottom: 12px; }
  .mega-cat { padding-top: 4px; }
  .mega-dropdown .mega-col a,
  .nav-links .sub-menu a { padding: 10px 0; font-size: 14px; white-space: normal; }
  .mega-footer { text-align: left; }

  .hero { min-height: 0; }
  .hero-content { padding: 40px 20px; }
  .hero h1 { font-size: clamp(28px, 7vw, 38px); }
  .hero p.sub { font-size: 15px; line-height: 1.6; }
  .hero-btns { gap: 12px; margin-top: 22px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    flex: 1 1 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .hero-badge { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }
  .breadcrumb { font-size: 12px; margin-bottom: 14px; }

  section { padding: 40px 0; }
  .container { padding: 0 20px; }

  .content-layout { grid-template-columns: 1fr; gap: 32px; }
  .content-main p { font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
  .content-main h2 { font-size: 22px; margin: 28px 0 12px; }
  .content-main li { font-size: 15px; line-height: 1.7; }
  .side-card { position: static; padding: 22px; }

  .cross-grid { grid-template-columns: 1fr; gap: 16px; }
  .cross-col { padding: 20px; }
  .cross-links h2 { font-size: clamp(22px, 6vw, 28px); }
  .cross-links .sub { font-size: 14px; margin-bottom: 24px; }

  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-info h2 { font-size: 26px; }
  .contact-info > p { font-size: 14px; margin-bottom: 22px; }
  .contact-item { gap: 12px; }
  .contact-item-icon { width: 38px; height: 38px; font-size: 16px; }
  .contact-item-value { font-size: 14px; word-break: break-word; }
  .contact-form-card { padding: 22px; }
  .contact-form-card h3 { font-size: 18px; margin-bottom: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  footer { padding: 40px 0 20px; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-license { font-size: 11px; line-height: 1.8; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 11px; }
}

@media (max-width: 480px) {
  .top-bar { font-size: 10px; padding: 7px 10px; }
  .logo-name { font-size: 14px; }
  .logo img { height: 34px; }
  .hero h1 { font-size: 26px; }
  .contact-info h2 { font-size: 22px; }
}
